home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / blf082b / makefile.nt < prev    next >
Makefile  |  1993-12-01  |  500b  |  22 lines

  1. # BloufGate makefile for MicroSoft WIN32 SDK
  2. #  nmake nodebug=1 for release version
  3. !include <ntwin32.mak>
  4.  
  5. all: blouf.exe nlist.exe
  6.  
  7. blouf.exe: ufg.obj fug.obj config.obj misc.obj address.obj pkt.obj \
  8.     global.obj main.obj killdupe.obj
  9.   $(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibs)
  10.  
  11. nlist.exe: nlist.obj
  12.   $(link) $(linkdebug) $(conflags) -out:$*.exe $** $(conlibs)
  13.  
  14. clean:
  15.   del *.obj
  16.   del *.exe
  17.   del *.bak
  18.  
  19. .c.obj:
  20.   $(cc) $(cdebug) $(cflags) $(cvars) $*.c
  21.  
  22.